Dynomotion

Group: DynoMotion Message: 1706 From: bradodarb Date: 8/19/2011
Subject: CCoordMotion Singleton ?
In an attempt to provide flexibility, I implemented two separate CoordMotion instances int the KM_Controller.cs class.


The thought was to use the interpreter for.... interpreting and have the ability to use a separate CoordMotion class for aux motion(tool changes, etc...)

However I get an exception when trying to use the two consecutively.


Is CoordMotion a Singleton on the board so I can only have one per Kflop?

-Brad Murry
Group: DynoMotion Message: 1707 From: bradodarb Date: 8/19/2011
Subject: Re: CCoordMotion Singleton ?
Hello,

Hmmm.... I suspect something else may be going on. I can manipulate the KM_Controller.CoordMotion instance - say like calling Abort() then ClearAbort().

I can then Interpret a file with no issues (KM_Controller.Interpreter has it's own instance of CoordMotion).

It is not until I try to call a direct motion call on the KM_Controller.CoordMotion instance (StraightTraverse)that I run into the Object not set an instance of an object...blah blah blah.

Is it possible the TP is being shared and causing an issue?

Thank you,
Brad Murry





--- In DynoMotion@yahoogroups.com, "bradodarb" <bradodarb@...> wrote:
>
> In an attempt to provide flexibility, I implemented two separate CoordMotion instances int the KM_Controller.cs class.
>
>
> The thought was to use the interpreter for.... interpreting and have the ability to use a separate CoordMotion class for aux motion(tool changes, etc...)
>
> However I get an exception when trying to use the two consecutively.
>
>
> Is CoordMotion a Singleton on the board so I can only have one per Kflop?
>
> -Brad Murry
>
Group: DynoMotion Message: 1709 From: Tom Kerekes Date: 8/19/2011
Subject: Re: CCoordMotion Singleton ?
Hi Brad,
 
I'm not sure.  But yes the TrajectoryPlanner variables and buffers are global so that would be a problem.  I'm thinking two instances is a bad idea.  There is a lot of internal state for example how much is downloaded to the KFLOP coordinated motion buffer or whether KFLOP has been told to execute, or the current axis positions, etc... that would get messed up.  But then on the other hand I believe I have ran multiple KMotionCNC applications simultaneously and as long as one or the other is always "idle" it seems to work ok.  But I can't justify putting a lot of effort into this as I don't know of anyone really needing it yet.
 
Regards
TK
 


--- On Fri, 8/19/11, bradodarb <bradodarb@...> wrote:

From: bradodarb <bradodarb@...>
Subject: [DynoMotion] Re: CCoordMotion Singleton ?
To: DynoMotion@yahoogroups.com
Date: Friday, August 19, 2011, 2:13 AM

 
Hello,

Hmmm.... I suspect something else may be going on. I can manipulate the KM_Controller.CoordMotion instance - say like calling Abort() then ClearAbort().

I can then Interpret a file with no issues (KM_Controller.Interpreter has it's own instance of CoordMotion).

It is not until I try to call a direct motion call on the KM_Controller.CoordMotion instance (StraightTraverse)that I run into the Object not set an instance of an object...blah blah blah.

Is it possible the TP is being shared and causing an issue?

Thank you,
Brad Murry

--- In DynoMotion@yahoogroups.com, "bradodarb" <bradodarb@...> wrote:
>
> In an attempt to provide flexibility, I implemented two separate CoordMotion instances int the KM_Controller.cs class.
>
>
> The thought was to use the interpreter for.... interpreting and have the ability to use a separate CoordMotion class for aux motion(tool changes, etc...)
>
> However I get an exception when trying to use the two consecutively.
>
>
> Is CoordMotion a Singleton on the board so I can only have one per Kflop?
>
> -Brad Murry
>

Group: DynoMotion Message: 1714 From: bradodarb Date: 8/20/2011
Subject: Re: CCoordMotion Singleton ?
FYI

Not sure what was happening before, but after a new boot this afternoon I was able to do some CoordMotion calls followed by to file interpretations and the another round of direct CoorMotion calls.

Not sure why I received those errors before, but likely a result of many days of up time on my heavily used dev machine.


Looks like we are in the clear for mixed interpreter/coordmotion usage.


-Brad Murry

--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Brad,
>  
> I'm not sure.  But yes the TrajectoryPlanner variables and buffers are global so that would be a problem.  I'm thinking two instances is a bad idea.  There is a lot of internal state for example how much is downloaded to the KFLOP coordinated motion buffer or whether KFLOP has been told to execute, or the current axis positions, etc... that would get messed up.  But then on the other hand I believe I have ran multiple KMotionCNC applications simultaneously and as long as one or the other is always "idle" it seems to work ok.  But I can't justify putting a lot of effort into this as I don't know of anyone really needing it yet.
>  
> Regards
> TK
>  
>
>
> --- On Fri, 8/19/11, bradodarb <bradodarb@...> wrote:
>
>
> From: bradodarb <bradodarb@...>
> Subject: [DynoMotion] Re: CCoordMotion Singleton ?
> To: DynoMotion@yahoogroups.com
> Date: Friday, August 19, 2011, 2:13 AM
>
>
>  
>
>
>
> Hello,
>
> Hmmm.... I suspect something else may be going on. I can manipulate the KM_Controller.CoordMotion instance - say like calling Abort() then ClearAbort().
>
> I can then Interpret a file with no issues (KM_Controller.Interpreter has it's own instance of CoordMotion).
>
> It is not until I try to call a direct motion call on the KM_Controller.CoordMotion instance (StraightTraverse)that I run into the Object not set an instance of an object...blah blah blah.
>
> Is it possible the TP is being shared and causing an issue?
>
> Thank you,
> Brad Murry
>
> --- In DynoMotion@yahoogroups.com, "bradodarb" <bradodarb@> wrote:
> >
> > In an attempt to provide flexibility, I implemented two separate CoordMotion instances int the KM_Controller.cs class.
> >
> >
> > The thought was to use the interpreter for.... interpreting and have the ability to use a separate CoordMotion class for aux motion(tool changes, etc...)
> >
> > However I get an exception when trying to use the two consecutively.
> >
> >
> > Is CoordMotion a Singleton on the board so I can only have one per Kflop?
> >
> > -Brad Murry
> >
>